Uses of Package
edu.uky.ai.csp.kr
| Package | Description |
|---|---|
| edu.uky.ai.csp |
Contains classes for representing and solving simple constraint
satisfaction problems.
|
| edu.uky.ai.csp.kr |
Contains the knowledge representation for constraint satisfaction problems
that use simple binary equals and not equals constraints.
|
-
Classes in edu.uky.ai.csp.kr used by edu.uky.ai.csp Class Description Domain A domain is the set of values that a variable might possibly be assigned.Problem A constraint satisfaction problem is composed of variables (each with a set of potential values called a domain) and constraints on the values those variable can be assigned.Solution A solution to a constraint satisfaction problem is an assignment of values to the problem's variables. -
Classes in edu.uky.ai.csp.kr used by edu.uky.ai.csp.kr Class Description Constraint A constraint specifies requirements that any solution to the problem must meet.Domain A domain is the set of values that a variable might possibly be assigned.Problem A constraint satisfaction problem is composed of variables (each with a set of potential values called a domain) and constraints on the values those variable can be assigned.Solution A solution to a constraint satisfaction problem is an assignment of values to the problem's variables.Variable A variable can be assigned one of several possible values.